home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / js / calAlarmMonitor.js next >
Text File  |  2007-08-17  |  6KB  |  166 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Oracle Corporation code.
  15.  *
  16.  * The Initial Developer of the Original Code is Oracle Corporation
  17.  * Portions created by the Initial Developer are Copyright (C) 2005
  18.  * the Initial Developer. All Rights Reserved.
  19.  *
  20.  * Contributor(s):
  21.  *   Stuart Parmenter <stuart.parmenter@oracle.com>
  22.  *   Daniel Boelzle <daniel.boelzle@sun.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. function peekAlarmWindow() {
  39.     var windowMediator = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  40.                                    .getService(Components.interfaces.nsIWindowMediator);
  41.     return windowMediator.getMostRecentWindow("calendarAlarmWindow");
  42. }
  43.  
  44. function calAlarmServiceObserver() {
  45.     this.wrappedJSObject = this;
  46.     this.mAlarmService = Components.classes["@mozilla.org/calendar/alarm-service;1"]
  47.                                    .getService(Components.interfaces.calIAlarmService);
  48.     this.mAlarmItems = [];
  49. }
  50. calAlarmServiceObserver.prototype = {
  51.  
  52.     mAlarmService: null,
  53.     mAlarmItems: null,
  54.  
  55.     // This is a work-around for the fact that there is a delay between when
  56.     // we call openWindow and when it appears via getMostRecentWindow.  If an
  57.     // alarm is fired in that time-frame, it will actually end up in another window.
  58.     mWindowOpening: null,
  59.  
  60.     //
  61.     // calIAlarmServiceObserver
  62.     //
  63.     onAlarm: function caso_onAlarm(item) {
  64.  
  65.         this.mAlarmItems.push(item);
  66.  
  67.         if (getPrefSafe("calendar.alarms.playsound", true)) {
  68.             try {
  69.                 var soundURL = getPrefSafe("calendar.alarms.soundURL", null);
  70.                 var sound = Components.classes["@mozilla.org/sound;1"]
  71.                                       .createInstance(Components.interfaces.nsISound);
  72.                 sound.init();
  73.                 if (soundURL && soundURL.length > 0) {
  74.                     soundURL = makeURL(soundURL);
  75.                     sound.play(soundURL);
  76.                 } else {
  77.                     sound.beep();
  78.                 }
  79.             } catch (exc) {
  80.                 Components.utils.reportError(exc);
  81.             }
  82.         }
  83.  
  84.         if (!getPrefSafe("calendar.alarms.show", true)) {
  85.             return;
  86.         }
  87.  
  88.         var calAlarmWindow = peekAlarmWindow();
  89.         if (!calAlarmWindow  && !this.mWindowOpening) {
  90.             var windowWatcher = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  91.                                           .getService(Components.interfaces.nsIWindowWatcher);
  92.             this.mWindowOpening = windowWatcher.openWindow(
  93.                 null,
  94.                 "chrome://calendar/content/calendar-alarm-dialog.xul",
  95.                 "_blank",
  96.                 "chrome,dialog=yes,all,resizable",
  97.                 this);
  98.         }
  99.         if (!this.mWindowOpening) {
  100.             calAlarmWindow.addWidgetFor(item);
  101.         }
  102.     },
  103.  
  104.     window_onLoad: function caso_window_onLoad() {
  105.         var calAlarmWindow = this.mWindowOpening;
  106.         this.mWindowOpening = null;
  107.         for each (var item in this.mAlarmItems) {
  108.             calAlarmWindow.addWidgetFor(item);
  109.         }
  110.     },
  111.  
  112.     onRemoveAlarmsByItem: function caso_onRemoveAlarmsByItem(item) {
  113.         var calAlarmWindow = peekAlarmWindow();
  114.         this.mAlarmItems = this.mAlarmItems.filter(
  115.             function(item_) {
  116.                 var hashId_ = (item.recurrenceId ? item_.hashId
  117.                                                  : item_.parentItem.hashId);
  118.                 var ret = (item.hashId != hashId_);
  119.                 if (!ret && calAlarmWindow) { // window is open
  120.                     calAlarmWindow.removeWidgetFor(item_);
  121.                 }
  122.                 return ret;
  123.             });
  124.     },
  125.  
  126.     onRemoveAlarmsByCalendar: function caso_onRemoveAlarmsByCalendar(calendar) {
  127.         var calAlarmWindow = peekAlarmWindow();
  128.         this.mAlarmItems = this.mAlarmItems.filter(
  129.             function(item_) {
  130.                 var ret = (calendar.id != item_.calendar.id);
  131.                 if (!ret && calAlarmWindow) { // window is open
  132.                     calAlarmWindow.removeWidgetFor(item_);
  133.                 }
  134.                 return ret;
  135.             });
  136.     }
  137. };
  138.  
  139. function calAlarmMonitor() {
  140.     this.mObserver = new calAlarmServiceObserver();
  141. }
  142. calAlarmMonitor.prototype = {
  143.     mObserver: null,
  144.  
  145.     QueryInterface: function calAlarmMonitor_QueryInterface(iid) {
  146.         if (iid.equals(Components.interfaces.nsIObserver) ||
  147.             iid.equals(Components.interfaces.nsISupports)) {
  148.             return this;
  149.         }
  150.         throw Components.interfaces.NS_ERROR_NO_INTERFACE;
  151.     },
  152.  
  153.     /* nsIObserver */
  154.     observe: function calAlarmMonitor_observe(subject, topic, data) {
  155.         switch (topic) {
  156.         case "alarm-service-startup":
  157.             this.mObserver.mAlarmService.addObserver(this.mObserver);
  158.             break;
  159.  
  160.         case "alarm-service-shutdown":
  161.             this.mObserver.mAlarmService.removeObserver(this.mObserver);
  162.             break;
  163.         }
  164.     }
  165. };
  166.